home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-03-26 | 553 b | 39 lines |
- # 230397Emmy
- # MakeFile mit GNU für die Doku von pPas
- #
-
- #
- # Set Options
- #
-
- MAKEINFO = makeinfo 2>>T:MAKE.ERROROUT
- OPTS = --amiga-39
-
- #
- # Global Options
- #
-
- SHELL = /gnu/bin/sh
-
- #
- # Hauptsection
- #
-
- ALL: LangRef.guide
-
- ######################
- # Rules
- ######################
-
- %.guide : %.texi
- @echo "Texi-Compiling $< ..."
- @$(MAKEINFO) -o $@ $< $(OPTS)
-
- ################################
- # Docs
- ################################
-
- LangRef.guide : langref.texi langref_program.texi
-
- # EOF
-